home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / hc / turbopgl.sit / Tpascal xfcn template < prev    next >
Encoding:
Text File  |  1988-03-05  |  550 b   |  33 lines  |  [TEXT/TPAS]

  1. program xfcntemplate;
  2.  
  3. { change the name of the program to the name you want for the XFCN }
  4. {Remember to change the resource ID to a unique value after compiling}
  5.  
  6. {$R-}
  7. {$U-}
  8. {$D XFCN}
  9.  
  10. USES Memtypes,HyperXCmd;
  11.  
  12. PROCEDURE PasXFCN(paramPtr: XCmdPtr);
  13.  
  14. { this is the procedure that will be executed. the name must be PasXFCN }
  15.  
  16. {$I XCmdGlue.inc}
  17.  
  18.   BEGIN
  19.     
  20.   { put your code here. don't forget to return a value }
  21.   
  22.   END;
  23.  
  24. { the BEGIN/END following this comment are a null program. don't delete it.
  25.   it is required by Turbo. }
  26.   
  27. BEGIN
  28. END.
  29.  
  30.  
  31.  
  32.  
  33.